home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Prefs / Palette.i < prev    next >
Text File  |  1994-12-04  |  537b  |  23 lines

  1.   {      File format for palette preferences    }
  2.  
  3.  
  4. {$I "Include:Libraries/IffParse.i"}
  5.  
  6.  
  7. const
  8.     ID_PALT = 1346456660;
  9.  
  10. Type
  11.  PalettePrefs = Record
  12.     pap_Reserved     : Array[0..3] of Integer;    { System reserved                }
  13.     pap_4ColorPens   : Array[1..32] of WORD;
  14.     pap_8ColorPens   : Array[1..32] of WORD;
  15.     pap_Colors       : Array[1..32] of ColorSpec;     { Used as full 16-bit RGB values }
  16.  end;
  17.  PalettePrefsPtr = ^PalettePrefs;
  18.  
  19.  
  20. {***************************************************************************}
  21.  
  22.  
  23.